home *** CD-ROM | disk | FTP | other *** search
/ Windows News 2005 November / WNnov2005.iso / Windows / Equipement / hMailServer / hMailServer-4.1-Build-136.exe / {app} / PHPWebAdmin / include / dtree.js < prev    next >
Text File  |  2004-10-31  |  12KB  |  357 lines

  1. /*--------------------------------------------------|
  2. | dTree 2.05 | www.destroydrop.com/javascript/tree/ |
  3. |---------------------------------------------------|
  4. | Copyright (c) 2002-2003 Geir LandrĂ·               |
  5. |                                                   |
  6. | This script can be used freely as long as all     |
  7. | copyright messages are intact.                    |
  8. |                                                   |
  9. | Updated: 17.04.2003                               |
  10. |--------------------------------------------------*/
  11.  
  12. // Node object
  13. function Node(id, pid, name, url, title, target, icon, iconOpen, open) {
  14.     this.id = id;
  15.     this.pid = pid;
  16.     this.name = name;
  17.     this.url = url;
  18.     this.title = title;
  19.     this.target = target;
  20.     this.icon = icon;
  21.     this.iconOpen = iconOpen;
  22.     this._io = open || false;
  23.     this._is = false;
  24.     this._ls = false;
  25.     this._hc = false;
  26.     this._ai = 0;
  27.     this._p;
  28. };
  29.  
  30. // Tree object
  31. function dTree(objName,imgPath) {
  32.     this.config = {
  33.         target                    : null,
  34.         folderLinks            : true,
  35.         useSelection        : true,
  36.         useCookies            : true,
  37.         useLines                : true,
  38.         useIcons                : true,
  39.         useStatusText        : false,
  40.         closeSameLevel    : false,
  41.         inOrder                    : false
  42.     }
  43.     this.icon = {
  44.         root                : imgPath + 'base.gif',
  45.         folder            : imgPath + 'folder.gif',
  46.         folderOpen    : imgPath + 'folderopen.gif',
  47.         node                : imgPath + 'page.gif',
  48.         empty                : imgPath + 'empty.gif',
  49.         line                : imgPath + 'line.gif',
  50.         join                : imgPath + 'join.gif',
  51.         joinBottom    : imgPath + 'joinbottom.gif',
  52.         plus                : imgPath + 'plus.gif',
  53.         plusBottom    : imgPath + 'plusbottom.gif',
  54.         minus                : imgPath + 'minus.gif',
  55.         minusBottom    : imgPath + 'minusbottom.gif',
  56.         nlPlus            : imgPath + 'nolines_plus.gif',
  57.         nlMinus            : imgPath + 'nolines_minus.gif'
  58.     };
  59.  
  60.     this.obj = objName;
  61.     this.aNodes = [];
  62.     this.aIndent = [];
  63.     this.root = new Node(-1);
  64.     this.selectedNode = null;
  65.     this.selectedFound = false;
  66.     this.completed = false;
  67. };
  68.  
  69. // Adds a new node to the node array
  70. dTree.prototype.add = function(id, pid, name, url, title, target, icon, iconOpen, open) {
  71.     this.aNodes[this.aNodes.length] = new Node(id, pid, name, url, title, target, icon, iconOpen, open);
  72. };
  73.  
  74. // Open/close all nodes
  75. dTree.prototype.openAll = function() {
  76.     this.oAll(true);
  77. };
  78. dTree.prototype.closeAll = function() {
  79.     this.oAll(false);
  80. };
  81.  
  82. // Outputs the tree to the page
  83. dTree.prototype.toString = function() {
  84.     var str = '<div class="dtree">\n';
  85.     if (document.getElementById) {
  86.         if (this.config.useCookies) this.selectedNode = this.getSelected();
  87.         str += this.addNode(this.root);
  88.     } else str += 'Browser not supported.';
  89.     str += '</div>';
  90.     if (!this.selectedFound) this.selectedNode = null;
  91.     this.completed = true;
  92.     return str;
  93. };
  94.  
  95. // Creates the tree structure
  96. dTree.prototype.addNode = function(pNode) {
  97.     var str = '';
  98.     var n=0;
  99.     if (this.config.inOrder) n = pNode._ai;
  100.     for (n; n<this.aNodes.length; n++) {
  101.         if (this.aNodes[n].pid == pNode.id) {
  102.             var cn = this.aNodes[n];
  103.             cn._p = pNode;
  104.             cn._ai = n;
  105.             this.setCS(cn);
  106.             if (!cn.target && this.config.target) cn.target = this.config.target;
  107.             if (cn._hc && !cn._io && this.config.useCookies) cn._io = this.isOpen(cn.id);
  108.             if (!this.config.folderLinks && cn._hc) cn.url = null;
  109.             if (this.config.useSelection && cn.id == this.selectedNode && !this.selectedFound) {
  110.                     cn._is = true;
  111.                     this.selectedNode = n;
  112.                     this.selectedFound = true;
  113.             }
  114.             str += this.node(cn, n);
  115.             if (cn._ls) break;
  116.         }
  117.     }
  118.     return str;
  119. };
  120.  
  121. // Creates the node icon, url and text
  122. dTree.prototype.node = function(node, nodeId) {
  123.     var str = '<div class="dTreeNode">' + this.indent(node, nodeId);
  124.     if (this.config.useIcons) {
  125.         if (!node.icon) node.icon = (this.root.id == node.pid) ? this.icon.root : ((node._hc) ? this.icon.folder : this.icon.node);
  126.         if (!node.iconOpen) node.iconOpen = (node._hc) ? this.icon.folderOpen : this.icon.node;
  127.         if (this.root.id == node.pid) {
  128.             node.icon = this.icon.root;
  129.             node.iconOpen = this.icon.root;
  130.         }
  131.         str += '<img id="i' + this.obj + nodeId + '" src="' + ((node._io) ? node.iconOpen : node.icon) + '" alt="" />';
  132.     }
  133.     if (node.url) {
  134.         str += '<a id="s' + this.obj + nodeId + '" class="' + ((this.config.useSelection) ? ((node._is ? 'nodeSel' : 'node')) : 'node') + '" href="' + node.url + '"';
  135.         if (node.title) str += ' title="' + node.title + '"';
  136.         if (node.target) str += ' target="' + node.target + '"';
  137.         if (this.config.useStatusText) str += ' onmouseover="window.status=\'' + node.name + '\';return true;" onmouseout="window.status=\'\';return true;" ';
  138.         if (this.config.useSelection && ((node._hc && this.config.folderLinks) || !node._hc))
  139.             str += ' onclick="javascript: ' + this.obj + '.s(' + nodeId + ');"';
  140.         str += '>';
  141.     }
  142.     else if ((!this.config.folderLinks || !node.url) && node._hc && node.pid != this.root.id)
  143.         str += '<a href="javascript: ' + this.obj + '.o(' + nodeId + ');" class="node">';
  144.     str += node.name;
  145.     if (node.url || ((!this.config.folderLinks || !node.url) && node._hc)) str += '</a>';
  146.     str += '</div>';
  147.     if (node._hc) {
  148.         str += '<div id="d' + this.obj + nodeId + '" class="clip" style="display:' + ((this.root.id == node.pid || node._io) ? 'block' : 'none') + ';">';
  149.         str += this.addNode(node);
  150.         str += '</div>';
  151.     }
  152.     this.aIndent.pop();
  153.     return str;
  154. };
  155.  
  156. // Adds the empty and line icons
  157. dTree.prototype.indent = function(node, nodeId) {
  158.     var str = '';
  159.     if (this.root.id != node.pid)
  160.     {
  161.         for (var n=0; n<this.aIndent.length; n++)
  162.             str += '<img src="' + ( (this.aIndent[n] == 1 && this.config.useLines) ? this.icon.line : this.icon.empty ) + '" alt="" />';
  163.  
  164.         (node._ls) ? this.aIndent.push(0) : this.aIndent.push(1);
  165.  
  166.         if (node._hc)
  167.         {
  168.             str += '<a href="javascript: ' + this.obj + '.o(' + nodeId + ');"><img id="j' + this.obj + nodeId + '" src="';
  169.             if (!this.config.useLines)
  170.                 str += (node._io) ? this.icon.nlMinus : this.icon.nlPlus;
  171.             else
  172.                 str += ( (node._io) ? ((node._ls && this.config.useLines) ? this.icon.minusBottom : this.icon.minus) : ((node._ls && this.config.useLines) ? this.icon.plusBottom : this.icon.plus ) );
  173.             str += '" alt="" /></a>';
  174.         }
  175.         else
  176.             str += '<img src="' + ( (this.config.useLines) ? ((node._ls) ? this.icon.joinBottom : this.icon.join ) : this.icon.empty) + '" alt="" />';
  177.     }
  178.  
  179.     return str;
  180. };
  181.  
  182. // Checks if a node has any children and if it is the last sibling
  183. dTree.prototype.setCS = function(node) {
  184.     var lastId;
  185.     for (var n=0; n<this.aNodes.length; n++) {
  186.         if (this.aNodes[n].pid == node.id) node._hc = true;
  187.         if (this.aNodes[n].pid == node.pid) lastId = this.aNodes[n].id;
  188.     }
  189.     if (lastId==node.id) node._ls = true;
  190. };
  191.  
  192. // Returns the selected node
  193. dTree.prototype.getSelected = function() {
  194.     var sn = this.getCookie('cs' + this.obj);
  195.     return (sn) ? sn : null;
  196. };
  197.  
  198. // Highlights the selected node
  199. dTree.prototype.s = function(id) {
  200.     if (!this.config.useSelection) return;
  201.     var cn = this.aNodes[id];
  202.     if (cn._hc && !this.config.folderLinks) return;
  203.     if (this.selectedNode != id) {
  204.         if (this.selectedNode || this.selectedNode==0) {
  205.             eOld = document.getElementById("s" + this.obj + this.selectedNode);
  206.             eOld.className = "node";
  207.         }
  208.         eNew = document.getElementById("s" + this.obj + id);
  209.         eNew.className = "nodeSel";
  210.         this.selectedNode = id;
  211.         if (this.config.useCookies) this.setCookie('cs' + this.obj, cn.id);
  212.     }
  213. };
  214.  
  215. // Toggle Open or close
  216. dTree.prototype.o = function(id) {
  217.     var cn = this.aNodes[id];
  218.     this.nodeStatus(!cn._io, id, cn._ls);
  219.     cn._io = !cn._io;
  220.     if (this.config.closeSameLevel) this.closeLevel(cn);
  221.     if (this.config.useCookies) this.updateCookie();
  222. };
  223.  
  224. // Open or close all nodes
  225. dTree.prototype.oAll = function(status) {
  226.     for (var n=0; n<this.aNodes.length; n++) {
  227.         if (this.aNodes[n]._hc && this.aNodes[n].pid != this.root.id) {
  228.             this.nodeStatus(status, n, this.aNodes[n]._ls)
  229.             this.aNodes[n]._io = status;
  230.         }
  231.     }
  232.     if (this.config.useCookies) this.updateCookie();
  233. };
  234.  
  235. // Opens the tree to a specific node
  236. dTree.prototype.openTo = function(nId, bSelect, bFirst) {
  237.     if (!bFirst) {
  238.         for (var n=0; n<this.aNodes.length; n++) {
  239.             if (this.aNodes[n].id == nId) {
  240.                 nId=n;
  241.                 break;
  242.             }
  243.         }
  244.     }
  245.     var cn=this.aNodes[nId];
  246.     if (cn.pid==this.root.id || !cn._p) return;
  247.     cn._io = true;
  248.     cn._is = bSelect;
  249.     if (this.completed && cn._hc) this.nodeStatus(true, cn._ai, cn._ls);
  250.     if (this.completed && bSelect) this.s(cn._ai);
  251.     else if (bSelect) this._sn=cn._ai;
  252.     this.openTo(cn._p._ai, false, true);
  253. };
  254.  
  255. // Closes all nodes on the same level as certain node
  256. dTree.prototype.closeLevel = function(node) {
  257.     for (var n=0; n<this.aNodes.length; n++) {
  258.         if (this.aNodes[n].pid == node.pid && this.aNodes[n].id != node.id && this.aNodes[n]._hc) {
  259.             this.nodeStatus(false, n, this.aNodes[n]._ls);
  260.             this.aNodes[n]._io = false;
  261.             this.closeAllChildren(this.aNodes[n]);
  262.         }
  263.     }
  264. }
  265.  
  266. // Closes all children of a node
  267. dTree.prototype.closeAllChildren = function(node) {
  268.     for (var n=0; n<this.aNodes.length; n++) {
  269.         if (this.aNodes[n].pid == node.id && this.aNodes[n]._hc) {
  270.             if (this.aNodes[n]._io) this.nodeStatus(false, n, this.aNodes[n]._ls);
  271.             this.aNodes[n]._io = false;
  272.             this.closeAllChildren(this.aNodes[n]);
  273.         }
  274.     }
  275. }
  276.  
  277. // Change the status of a node(open or closed)
  278. dTree.prototype.nodeStatus = function(status, id, bottom) {
  279.     eDiv    = document.getElementById('d' + this.obj + id);
  280.     eJoin    = document.getElementById('j' + this.obj + id);
  281.     if (this.config.useIcons) {
  282.         eIcon    = document.getElementById('i' + this.obj + id);
  283.         eIcon.src = (status) ? this.aNodes[id].iconOpen : this.aNodes[id].icon;
  284.     }
  285.     eJoin.src = (this.config.useLines)?
  286.     ((status)?((bottom)?this.icon.minusBottom:this.icon.minus):((bottom)?this.icon.plusBottom:this.icon.plus)):
  287.     ((status)?this.icon.nlMinus:this.icon.nlPlus);
  288.     eDiv.style.display = (status) ? 'block': 'none';
  289. };
  290.  
  291.  
  292. // [Cookie] Clears a cookie
  293. dTree.prototype.clearCookie = function() {
  294.     var now = new Date();
  295.     var yesterday = new Date(now.getTime() - 1000 * 60 * 60 * 24);
  296.     this.setCookie('co'+this.obj, 'cookieValue', yesterday);
  297.     this.setCookie('cs'+this.obj, 'cookieValue', yesterday);
  298. };
  299.  
  300. // [Cookie] Sets value in a cookie
  301. dTree.prototype.setCookie = function(cookieName, cookieValue, expires, path, domain, secure) {
  302.     document.cookie =
  303.         escape(cookieName) + '=' + escape(cookieValue)
  304.         + (expires ? '; expires=' + expires.toGMTString() : '')
  305.         + (path ? '; path=' + path : '')
  306.         + (domain ? '; domain=' + domain : '')
  307.         + (secure ? '; secure' : '');
  308. };
  309.  
  310. // [Cookie] Gets a value from a cookie
  311. dTree.prototype.getCookie = function(cookieName) {
  312.     var cookieValue = '';
  313.     var posName = document.cookie.indexOf(escape(cookieName) + '=');
  314.     if (posName != -1) {
  315.         var posValue = posName + (escape(cookieName) + '=').length;
  316.         var endPos = document.cookie.indexOf(';', posValue);
  317.         if (endPos != -1) cookieValue = unescape(document.cookie.substring(posValue, endPos));
  318.         else cookieValue = unescape(document.cookie.substring(posValue));
  319.     }
  320.     return (cookieValue);
  321. };
  322.  
  323. // [Cookie] Returns ids of open nodes as a string
  324. dTree.prototype.updateCookie = function() {
  325.     var str = '';
  326.     for (var n=0; n<this.aNodes.length; n++) {
  327.         if (this.aNodes[n]._io && this.aNodes[n].pid != this.root.id) {
  328.             if (str) str += '.';
  329.             str += this.aNodes[n].id;
  330.         }
  331.     }
  332.     this.setCookie('co' + this.obj, str);
  333. };
  334.  
  335. // [Cookie] Checks if a node id is in a cookie
  336. dTree.prototype.isOpen = function(id) {
  337.     var aOpen = this.getCookie('co' + this.obj).split('.');
  338.     for (var n=0; n<aOpen.length; n++)
  339.         if (aOpen[n] == id) return true;
  340.     return false;
  341. };
  342.  
  343. // If Push and pop is not implemented by the browser
  344. if (!Array.prototype.push) {
  345.     Array.prototype.push = function array_push() {
  346.         for(var i=0;i<arguments.length;i++)
  347.             this[this.length]=arguments[i];
  348.         return this.length;
  349.     }
  350. };
  351. if (!Array.prototype.pop) {
  352.     Array.prototype.pop = function array_pop() {
  353.         lastElement = this[this.length-1];
  354.         this.length = Math.max(this.length-1,0);
  355.         return lastElement;
  356.     }
  357. };